-------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-29-617ae320cdef> in <module>()
13 fig = plt.figure()
14 ax = Axes3D(fig)
---> 15 ax.scatter(xs,ys,zs, marker='o', r=ss, c="black", alpha=0.8)
16 for ii in xrange(0,360,1):
17 ax.view_init(elev=10., azim=ii)
/usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/mpl_toolkits/mplot3d/axes3d.pyc in scatter(self, xs, ys, zs, zdir, s, c, depthshade, *args, **kwargs)
2271 xs, ys, zs, s, c = cbook.delete_masked_points(xs, ys, zs, s, c)
2272
-> 2273 patches = Axes.scatter(self, xs, ys, s=s, c=c, *args, **kwargs)
2274 if not cbook.iterable(zs):
2275 is_2d = True
/usr/local/lib/python2.7/site-packages/matplotlib/__init__.pyc in inner(ax, *args, **kwargs)
1810 warnings.warn(msg % (label_namer, func.__name__),
1811 RuntimeWarning, stacklevel=2)
-> 1812 return func(ax, *args, **kwargs)
1813 pre_doc = inner.__doc__
1814 if pre_doc is None:
/usr/local/lib/python2.7/site-packages/matplotlib/axes/_axes.pyc in scatter(self, x, y, s, c, marker, cmap, norm, vmin, vmax, alpha, linewidths, verts, edgecolors, **kwargs)
3894 )
3895 collection.set_transform(mtransforms.IdentityTransform())
-> 3896 collection.update(kwargs)
3897
3898 if colors is None:
/usr/local/lib/python2.7/site-packages/matplotlib/artist.pyc in update(self, props)
854 func = getattr(self, 'set_' + k, None)
855 if func is None or not six.callable(func):
--> 856 raise AttributeError('Unknown property %s' % k)
857 func(v)
858 changed = True
AttributeError: Unknown property r